Skip to content

Instantly share code, notes, and snippets.

This table provides a comprehensive overview of Unicode spaces and their specific uses or characteristics based on the most recent standards and data sources.

Output Unicode Code Name Description
U+0020 SPACE Standard space character, produced by pressing the spacebar.
  U+00A0 NO-BREAK SPACE Prevents automatic line breaks at its position. Abbreviation: NBSP.
U+1680 OGHAM SPACE MARK Used in Ogham script; typically rendered as a dash, not a true space.

|

@mohrpw
mohrpw / homoglyph.md
Created January 24, 2025 15:55
latin homoglyph table

Latin Homoglyph and Symbols

Original Character Homoglyphs (Sorted by Similarity)
a a, а, ạ, ą, ä, à, á, ᴀ, ₐ, ᵃ, A, Α, Α̇, А, Ꭺ, ᗅ, ꓮ, ꓯ, A, 𐊠, 𝐀, 𝐴, 𝑨, 𝒜, 𝓐, 𝔄, 𝔸, 𝕬, 𝖠, 𝗔, 𝘈, 𝘼, 𝙰, 𝚨, 𝛢, 𝜜, 𝝖, 𝞐, ᴬ, ª, ɑ, ǟ, ꬱ
<#----------------------------------------------------------------------------------------------------
Release Notes:
v1.4:
Author: Jared Poeppelman, Microsoft
First version published on TechNet Script Gallery
----------------------------------------------------------------------------------------------------#>
function Test-Command
{
@sunmeat
sunmeat / app.py
Created February 16, 2026 10:51
інкапсуляція атрибуту класу, спосіб з геттером (не властивість!)
class Monster:
_count = 0 # атрибут класу позначено як умовно протектед
def __init__(self, health=100, attack=10, mana=50):
self.health = health
self.attack = attack
self.mana = mana
Monster._count += 1
print(f"створено монстра #{Monster._count}", end="")
@Muream
Muream / bake_to_opm.py
Last active February 16, 2026 10:53
This script bakes the transformation of a node to its offset parent matrix which then acts as its rest matrix. Only works with maya 2020 and up.
import maya.api.OpenMaya as om
import maya.cmds as cmds
TRANSFORM_NODETYPES = ["transform", "joint"]
def has_non_default_locked_attributes(node):
locked_attributes = []
for attribute in ["translate", "rotate", "scale", "jointOrient"]:
default_value = 1 if attribute == "scale" else 0
for axis in "XYZ":
@karpathy
karpathy / microgpt.py
Last active February 16, 2026 10:57
microgpt
"""
The most atomic way to train and inference a GPT in pure, dependency-free Python.
This file is the complete algorithm.
Everything else is just efficiency.
@karpathy
"""
import os # os.path.exists
import math # math.log, math.exp
@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active February 16, 2026 10:52
Complete Recent Discord Quest

Complete Recent Discord Quest

Note

This does not works in browser for quests which require you to play a game! Use the desktop app to complete those.

How to use this script:

  1. Accept a quest under the Quests tab
  2. Press Ctrl+Shift+I to open DevTools
  3. Go to the Console tab
  4. Paste the following code and hit enter:
@OmerFarukOruc
OmerFarukOruc / claude.md
Last active February 16, 2026 10:52
AI Agent Workflow Orchestration Guidelines

AI Coding Agent Guidelines (claude.md)

These rules define how an AI coding agent should plan, execute, verify, communicate, and recover when working in a real codebase. Optimize for correctness, minimalism, and developer experience.


Operating Principles (Non-Negotiable)

  • Correctness over cleverness: Prefer boring, readable solutions that are easy to maintain.
  • Smallest change that works: Minimize blast radius; don't refactor adjacent code unless it meaningfully reduces risk or complexity.

📘 If-Else Statements in Java

📌 Overview

This folder contains Java programs that demonstrate the use of conditional statements such as:

  • if
  • if-else
  • else-if ladder
  • Nested if